Component org.nuxeo.ecm.platform.publisher.pageprovider.contrib
In bundle org.nuxeo.ecm.platform.publisher
Resolution Order
429
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.publisher.pageprovider.contrib">
<extension target="org.nuxeo.ecm.platform.query.api.PageProviderService"
point="providers">
<coreQueryPageProvider name="domains_for_publishing">
<pattern>
SELECT * FROM Document WHERE ecm:primaryType = 'Domain'
AND ecm:parentId = ? AND ecm:isTrashed = 0
</pattern>
<sort column="dc:title" ascending="true" />
<pageSize>50</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="publish_space_suggestion">
<pattern quoteParameters="false" escapeParameters="true">
SELECT * FROM Document WHERE dc:title ILIKE '?%'
AND ecm:mixinType = 'PublishSpace' AND ecm:isVersion = 0 AND
ecm:isTrashed = 0
</pattern>
<sort column="dc:title" ascending="true" />
<pageSize>50</pageSize>
</coreQueryPageProvider>
</extension>
</component>